*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
	width: 100%;
	height: 100%;
	background-color:white;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-content: center;
	}

/*inicio de header*/
.header{
    width: 100%;
    background-color:white;
    height: 8em;
	display: flex;
	flex-direction: row;
	justify-content: left;
	align-items: center;
    }
.logo{
    object-fit: cover;
    height: 100px;
    width: 335px;
    margin-left: 122px;
    margin-top: -6px;
}
.barnav{
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	}
.menu{
    width: 10%;
    height: 100%;
    color:black;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	}
.menu:hover{
   color:#990000;
   transition: 0.5s;
}

/* Quitar estilo por defecto de los enlaces del menú */
.barnav a {
  text-decoration: none;   /* quita subrayado */
  color: #000000;          /* negro */
  font-weight: 500;
}

/* Hover elegante */
.barnav a:hover {
  color: #990000;          /* rojo corporativo */
}
/* =========================
   PROYECTOS - GRID
========================= */

.container{
  width: 100%;
  padding: 40px 0;
  display: flex;
  justify-content: center;
  background:white;
}

.projects{
  width: min(1200px, 92%);
}

.projects-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Tarjeta */
.project-card{
  margin: 0;
}

.project-img{
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  border-radius: 15px;
  cursor: pointer;
}

.project-title{
  margin-top: 10px;
  font-size: 14px;
  color:black;
  font-weight: 500;
  font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
  height: auto;        /* importante */
    text-align: center;  /* centra el contenido */
}

/* ================= LIGHTBOX ================= */

.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox.active{
  display: flex;
}

.lightbox-content{
  position: relative;
  max-width: 900px;
  width: 90%;
}

.lightbox-content img{
  width: 100%;
  border-radius: 8px;
}

.lightbox-close{
  position: absolute;
  top: -15px;
  right: -15px;
  background: #990000;
  color: white;
  font-size: 28px;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  cursor: pointer;
}

/*inicio de footer*/
.footer{
    width: 100%;
    background-color: #990000;
	height: 19em;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.7fr 0.7fr 1fr;
    gap: 16px;
    align-items: center;
    margin-left: 110px;
    margin-top: 120px;
}
.footer h4{
    margin-top: -119px;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 10px;
    font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
    align-items: center;
    color: white;
}

.footer a{
    display: block;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 7px;
    font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
    color: white;
    margin-left: 3px;
	 text-decoration: none;
}
.footer a:hover{
    color: #000000;
	}
.footer-logo{
    height: 211px;
    width: auto;
    margin-bottom: -4px;
    margin-top: -75px;
    margin-left: 56px;
}
.small{
    font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 0px;
    margin-left: -18px;
	}
.ruc{
    font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
    color: white;
    margin-top: 15px;
}
.container-footer1{
    font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
    color: white;
    margin-top: 12px;
}
.telefono{
    font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
    margin-top: 14px;
	color: white;
}
.celular{
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	color: white;
}
.direccion{
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	color: white;
}
